Skip to content

Latest commit

 

History

History

0442-Find All Duplicates in an Array

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

442. Find All Duplicates in an Array

Given an array of integers, 1 ≤ a[i] ≤ n (n = size of array), some elements appear twice and others appear once.

Find all the elements that appear twice in this array.

Could you do it without extra space and in O(n) runtime?

Example:

Input: [4,3,2,7,8,2,3,1] Output: [2,3] 

Solutions (Rust)

1. Mark Positions

implSolution{pubfnfind_duplicates(nums:Vec<i32>) -> Vec<i32>{letmut nums = nums;letmut ret = Vec::new();for i in0..nums.len(){let j = nums[i].abs()asusize - 1; nums[j] = -nums[j];if nums[j] > 0{ ret.push(j asi32 + 1);}} ret }}
close